home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / qs2fox.zip / QS2FOX.DOC < prev    next >
Text File  |  1992-02-17  |  3KB  |  60 lines

  1.                                QS2FOX 1.0
  2.  
  3.       (C) Copyright 1992, ByteSize Software, All Rights Reserved.
  4.  
  5. QS2FOX will convert most of the Quicksilver commands to FoxPro 2.0
  6. commands.  Some Quicksilver commands have no FoxPro equivalent and
  7. are not supported.  Others have been replaced by UDF's that are in
  8. the file FOX_PROC.PRG
  9.  
  10. The following list will explain what QS2FOX will do.
  11.  
  12. Unsupported commands will be Remarked out with *~~
  13.  
  14. QUCKSILVER                       FOXPRO
  15. ==============================   =================================
  16. WSET WINDOW                      DEFINE WINDOW
  17. WUSE                             ACTIVATE WINDOW
  18. WSELECT <num>                    ACTIVATE WINDOW <num>  This syntax is not
  19.                                                         supported by FoxPro
  20.                                                         but will allow you
  21.                                                         change <num> to a
  22.                                                         window name.
  23. WSELECT 0                        ACTIVATE SCREEN
  24. WDISPLAY                         CLEAR
  25. WCLOSE ALL                       CLEAR WINDOWS
  26. WCLOSE                           DEACTIVATE WINDOW
  27. WRELEASE                         RELEASE WINDOW
  28. WSELECT()                        WOUTPUT()
  29. CLEAR KEY                        CLEAR TYPEAHEAD
  30. SET PROW TO 0                    SETPROW()              (UDF)
  31. UPSCROLL 1                       UPSCROLL(1)            (UDF)
  32. DOWNSCROLL 1                     DOWNSCRO(1)            (UDF)
  33. STORE AUTOMEM                    SCATTER MEMVAR
  34. APPEND AUTOMEM                   APPEND BLANK/GATHER MEMVAR
  35. CLEAR AUTOMEM                    SCATTER MEMVAR BLANK
  36. REPLACE AUTOMEM                  GATHER MEMVAR
  37. CLEAR CHARACTER <char>           DO CLR_CHAR WITH <char>
  38. RELEASE AUTOMEM                  =KILLMEM()             (UDF)
  39. SLEEP <num>                      =INKEY(<num>)
  40.  
  41.  
  42. QS2FOX does not convert completely and you will still need to debug
  43. your application.  Not all window commands convert entirely.  Some
  44. problems will be with the WSELECT command, ACTIVATE WINDOW may
  45. activate a number and not a window name.
  46.  
  47. To use QS2FOX you will need to RENAME all PRG's with an extension of BAK.
  48.  
  49.    Example:  REN *.PRG *.BAK
  50.  
  51. QS2FOX reads all files with an extension of BAK, converts the commands and
  52. creates a new file with the PRG extension.
  53.  
  54. Comments and suggestions are welcome and can be mailed to:
  55.  
  56.                            ByteSize Software
  57.                      1844 S. Mooney Blvd., Suite O
  58.                            Visalia, CA 93277
  59.                              (209) 625-9036
  60.